# How do I enable multi-file upload?

Transloadit supports several ways for users to upload multiple files at once.

**HTML2**

The easiest way to allow users to select multiple files, is to use an input field like this:

![](/_next/static/media/copy.04p1cju9qekk_.svg?dpl=dpl_CXtUsk87SXHsNzYtiFg4MN2jPwQx)

```html
<input name="my_file" multiple="multiple" />

```

This will allow users with an HTML2+ capable browser to select multiple files in the file selection dialog box.

Supported Browsers:

* Firefox >= 3.6
* Google Chrome >= 2
* Safari >= 4

For Opera, use their [Web Forms 2.0](https://www.w3.org/TR/web-forms-2/) support, which has been available since 2006:

![](/_next/static/media/copy.04p1cju9qekk_.svg?dpl=dpl_CXtUsk87SXHsNzYtiFg4MN2jPwQx)

```html
<input type="file" min="1" max="9999" />

```

More information in our [HTML2 integration docs](/docs/sdks/multipart-form.md).

**HTML5**

For more modern browsers, it's recommended to use [our file uploader Uppy](/docs/sdks/uppy.md) which by default allows uploading multiple files at a time.
